#empty dictionary
dictionary = {}

#dictionary with a numerical key value
dictionary = {1: "one", 2 : "two"}

#dictionary with a string key
dictionary = {"politicians": "one", "civil servants" : "two"}

#U can also use the dict key word
dictionary = dict({1:'right', 2:'left'})
